Inheritance diagram for Exponent::GUI::Events::CActionEvent:

Definition at line 45 of file CActionEvent.hpp.
Identifiers for the action events.
| e_controlChanged | The control has changed |
| e_scroll |
Scrolling of some sort
|
| e_menuChanged |
Menu has changed
|
| e_otherEvent | Some other (future) event |
Definition at line 61 of file CActionEvent.hpp.
| Exponent::GUI::Events::CActionEvent::CActionEvent | ( | IControl * | control | ) |
Construction
| control | The control that generated the event |
| Exponent::GUI::Events::CActionEvent::CActionEvent | ( | IControl * | control, | |
| const CMouseEvent & | mouseEvent | |||
| ) |
Construction with mouse
| control | The control that generated the event | |
| mouseEvent | The mouse event that triggered the control to change |
| virtual Exponent::GUI::Events::CActionEvent::~CActionEvent | ( | ) | [virtual] |
Destruction
| virtual IControl* Exponent::GUI::Events::CActionEvent::getControl | ( | ) | const [virtual] |
Get the control
| IControl* | The control that triggered the event |
| virtual EActionEventType Exponent::GUI::Events::CActionEvent::getEventType | ( | ) | const [virtual] |
Get the event type
| EActionEventType | The type of event |
| virtual bool Exponent::GUI::Events::CActionEvent::isAltDown | ( | ) | const [virtual] |
Is the alt key down
| bool | True if alt is down, false otherwise |
| virtual bool Exponent::GUI::Events::CActionEvent::isCtrlDown | ( | ) | const [virtual] |
Is ctrl down
| bool | True if ctrl is down, false otherwise |
| virtual bool Exponent::GUI::Events::CActionEvent::isShiftDown | ( | ) | const [virtual] |
Is shift down
| bool | True if shift is down, false otherwise |
| virtual void Exponent::GUI::Events::CActionEvent::setControl | ( | IControl * | control | ) | [virtual] |
Set the control
| control | The control that generated the event |
| virtual void Exponent::GUI::Events::CActionEvent::setEventType | ( | EActionEventType | eventType | ) | [virtual] |
Set the event type
| eventType | The type of event |
| virtual void Exponent::GUI::Events::CActionEvent::setModifiers | ( | const bool | shift, | |
| const bool | alt, | |||
| const bool | ctrl | |||
| ) | [virtual] |
Set the modifiers
| shift | True if shift is down, false otherwise | |
| alt | True if alt is down, false otherwise | |
| ctrl | True if ctrl is down, false otherwise |
bool Exponent::GUI::Events::CActionEvent::m_altIsDown [protected] |
Is the alt key depressed
Definition at line 155 of file CActionEvent.hpp.
IControl* Exponent::GUI::Events::CActionEvent::m_control [protected] |
Generating control
Definition at line 151 of file CActionEvent.hpp.
bool Exponent::GUI::Events::CActionEvent::m_ctrlIsDown [protected] |
Is the ctrl key depressed
Definition at line 156 of file CActionEvent.hpp.
Type if event
Definition at line 152 of file CActionEvent.hpp.
bool Exponent::GUI::Events::CActionEvent::m_shiftIsDown [protected] |
Is shift key depressed
Definition at line 154 of file CActionEvent.hpp.